You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 rivejä
597 B

  1. <template>
  2. <section>
  3. <img :src="config.public.IMG_BASE_URL + film.poster_path" :alt="film.title">
  4. <span class="flex flex-row">
  5. {{ film.title }}
  6. {{ film.original_title }}
  7. {{ film.vote_count }}
  8. {{ film.release_date }}
  9. {{ film.id }}
  10. </span>
  11. </section>
  12. </template>
  13. <script setup lang="ts">
  14. const config = useRuntimeConfig()
  15. const film = ref()
  16. const route = useRoute()
  17. const filmId = ref('')
  18. filmId.value = route.params.id
  19. if (filmId.value !== '') {
  20. const { data } = await useFetch(`/api/details/${filmId.value}`)
  21. film.value = data.value
  22. }
  23. </script>